/* ==========================================
   SERVICE BOOKING FORM STYLES
   ========================================== */
.service-booking-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    width: 100%;
}

.glass-booking-form {
    background: rgba(8, 24, 58, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    width: 100%;
    max-width: 500px; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glass-booking-form .form-group {
    margin-bottom: 20px;
}

.glass-booking-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #061021;
    font-weight: 500;
}

.glass-booking-form .form-control {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 15px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Dropdown (Select) Options ka background dark karne ke liye */
.glass-booking-form select option {
    background: #111827;
    color: #fff;
}

.glass-booking-form .form-control:focus {
    border-color: #22d3ee;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.glass-booking-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.glass-booking-form .btn-submit {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px -5px rgba(168, 85, 247, 0.4);
}

.glass-booking-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(34, 211, 238, 0.6);
}


:root {
            --bg-dark: #03080f; /* Exact Dark Background */
            --panel-bg: rgba(17, 24, 39, 0.6); /* Glass effect */
            --text-main: #f3f4f6; /* White text */
            --text-dim: #9ca3af; /* Gray text */
            --accent-cyan: #22d3ee;
            --accent-purple: #a855f7;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            overflow: hidden;
        }


      /* ==========================================
   ERROR-FREE MARQUEE STYLING 
   ========================================== */
.zb-marquee-container {
    width: 100%;
    overflow: hidden;
    background: rgba(17, 24, 39, 0.6); /* Subtle glassmorphism effect */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    margin-top: 0px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    position: absolute;
    top: 25px;
    left: 0;


    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.zb-marquee-track {
    display: flex;
    width: max-content;
    /* Takes 20 seconds for one full scroll. Adjust speed here */
    animation: marquee-scroll 20s linear infinite;
    
    /* Hardware Acceleration for zero lag and no flickering on mobile */
    will-change: transform;
    transform: translateZ(0); 
}

.zb-marquee-content {
    display: flex;
    align-items: center;
    /* Prevents the block from shrinking, ensuring a seamless loop with no gaps */
    flex-shrink: 0; 
}

.zb-marquee-text {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform:capitalize;
    padding: 0 30px;
    display: flex;
    align-items: center;
    
    /* Forces the text to stay on a single line (prevents word wrapping) */
    white-space: nowrap; 
    /* Prevents the words from being squished together */
    flex-shrink: 0; 

    /* ZeroBound brand gradient colors */
    background: linear-gradient(135deg, #22d3ee, #a855f7);
    
    /* Cross-browser support for text gradients (fixes the linter error) */
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; 
    -webkit-text-fill-color: transparent;
    
    /* Prevents the top or bottom of the gradient text from being cut off */
    line-height: 1.2; 
    padding-bottom: 2px;
}

.zb-marquee-text .dot {
    font-size: 30px;
    margin-left: 30px;
    /* Keeps the dot slightly transparent to match the theme */
    -webkit-text-fill-color: rgba(255, 255, 255, 0.2); 
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* Pause the marquee when a user hovers over it for readability */
.zb-marquee-container:hover .zb-marquee-track {
    animation-play-state: paused;
}

